home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / WORDMISC / ACTCAL.LZH / CINSTALL.BAT < prev    next >
DOS Batch File  |  1991-07-17  |  2KB  |  55 lines

  1. ECHO OFF
  2. CLS
  3. ECHO  
  4. ECHO                           ACTCLDR INSTALLATION
  5. ECHO  
  6. ECHO  If an ACTMENU directory does not exist on drive C, this BAT file will
  7. ECHO  create an ACTCLDR directory and copy all of the ActCalendar files.
  8. ECHO  
  9. ECHO  If ActMenu has been installed in the ACTMENU directory on the C drive, the
  10. ECHO  ACTMENU.SKD file will be renamed ACTCLDR.SKD and all of the ActCalendar
  11. ECHO  files will be copied to the ACTMENU directory.
  12. ECHO  
  13. ECHO            To install on drive D, change all "C:"s to "D:"s.
  14. ECHO  
  15. ECHO Press Ctrl-C to cancel installation, or
  16. PAUSE
  17. CLS
  18. COPY A:ACTCLDR.BAT C:\ACTMENU\ACTCLDR.BAT
  19. IF EXIST C:ACTCLDR.BAT GOTO :ActMenu
  20. COPY A:ACTCLDR.BAT C:\ACTCLDR.BAT
  21. IF EXIST C:\ACTCLDR.BAT GOTO :ActCldr
  22. ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░
  23. ECHO ░░  Drive C not found!  ░░
  24. ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░
  25. GOTO :Exit
  26. :ActMenu
  27. C:
  28. CD\
  29. ERASE C:\ACTMENU\ACTCLDR.BAT
  30. COPY A:*.* C:\ACTMENU
  31. ERASE C:\ACTMENU\ACTCLDR.SKD
  32. RENAME C:\ACTMENU\ACTMENU.SKD ACTCLDR.SKD
  33. CLS
  34. ECHO  
  35. ECHO      ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  36. ECHO      ░░  Exit to DOS and change to drive C.                ░░
  37. ECHO      ░░  Type ACTMENU to start ActMenu on the C drive.     ░░
  38. ECHO      ░░  Start ActCalendar with ActMenu's calendar option. ░░
  39. ECHO      ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  40.  
  41. :ActCldr
  42. C:
  43. CD\
  44. MKDIR C:\ACTCLDR
  45. COPY A:*.* C:\ACTCLDR
  46. CLS
  47. ECHO  
  48. ECHO      ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  49. ECHO      ░░  Exit to DOS and change to drive C.                ░░
  50. ECHO      ░░  Type ACTCLDR to start ActCalendar on the C drive. ░░
  51. ECHO      ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  52. :Exit
  53. PAUSE
  54. CLS
  55.